home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 390 b | 23 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class LINK_LIST_BENCH1
-
- inherit BENCH1;
-
- creation make
-
- feature
-
- make is
- local
- link_list: LINK_LIST[INTEGER];
- a: ARRAY[INTEGER];
- do
- !!a.make(1,bench1_size);
- !!link_list.from_array(a);
- bench1(link_list);
- end;
-
- end -- LINK_LIST_BENCH1
-